Thank you for purchasing my product.
If you have any questions that are beyond the scope of this help file, please feel free to email willian@polargames.com.br. Thanks so much!
Create an account and generate your API_KEY.
Go to https://platform.openai.com/account/api-keys
Using a key on the frontend
You can put your API Key in a json file, without the need to use a server.
The advantage is that you don't need a server.
The disadvantage is that your API KEY is exposed, and other people can see it.
Then access the file.json file (html-files/json/config.json) and put your key in the API_KEY field between the quotes
Using a key on the backend
The second option, you can use a php file to store your key, so your key will be protected on the server
To use this option, you must set the "use_php_api" field to true in the config.json file.
Note: To use this option you will need a host with PHP 7 or higher
After modifying the config.json file, also modify the php file with your key
The CORS (Cross-Origin Resource Sharing) is a security measure that browsers implement to protect users against malicious attacks that can occur when a website attempts to access resources from another site. In other words, CORS is a security policy that browsers use to prevent a site from accessing information from another site without authorization.
When you try to run the index.html file locally and it makes a request to another file such as config.json, the browser may prevent the request from being completed due to the CORS security policy. This is because the browser is trying to protect you against possible malicious attacks.
To solve this problem, it is recommended to run the application on a local server on your machine such as WAMP, XAMPP or similar. Alternatively, you can upload the application to your website using FTP.
Open the index.html file in your browser.
The animal images are in the thumb folder, in SVG format, you can add images in the format you want, We recommend images with a height of less than 600px, and png or svg. q
You can configure the behavior of the characters by opening the config.json file
To add a new character:
add a comma in the penultimate json node, and just copy and paste a new node of json characters, and write their names and instructions.
In the config.json file you can define if you want to use a filter for badwords.
This filter is great if you want to prevent the user from typing certain words in the chat.
(In config.json: "filter_badwords": true)
You can change list of badwords in json/badwords.json file.